'Takes path of file as input from user and then Executes the File if it exist.

'Paste the following code in a "*.vbs" file.

'To create such file just save a text file with notepad using name "xxx.vbs"

'Or use the 'ren' command to rename "xxx.txt" into "xxx.vbs"

'==================================Paste Following Code in a *.vbs file=============
'=================================================================================

n=inputbox("Enter Path")

'Creating a sub named shell

sub shell(cmd)
	dim objShell
	Set objShell = WScript.CreateObject( "WScript.Shell" )
	objShell.Run(cmd)
	Set objShell = Nothing
end sub

'calling the sb shell by passing the path to it

shell n


'=========================================END=============================